home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-11-23 | 750 b | 28 lines | [TEXT/ttxt] |
- on mouseUp
- if first char of selection is in "(123456789" then
- get selection
- else if first char of msg is in "(123456789" then
- get msg
- else get first line of field "Phone Number"
- if it is not empty then
- put it into PhoneNumber
- put first line of field "Name and Address" into phoneName
- phone phoneNumber,phoneName
- end if
- end mouseUp
-
- on phone phoneNumber,phoneName
- visual effect zoom open
- go to "Phone"
- dial phoneNumber
- set lockScreen to true
- go to last card of "Telephone Log"
- doMenu "New Card"
- put phoneName into field "Person"
- put phoneNumber into field "Number"
- put the time into field "Start" -- start timer
- global StartTime
- put the long time into StartTime
- set lockScreen to false
- end phone
-